home *** CD-ROM | disk | FTP | other *** search
/ User's Choice Windows CD / User's Choice Windows CD (CMS Software)(1993).iso / utility1 / gs261src.zip / ZVMEM2.C < prev   
C/C++ Source or Header  |  1993-05-13  |  2KB  |  58 lines

  1. /* Copyright (C) 1992 Aladdin Enterprises.  All rights reserved.
  2.  
  3. This file is part of Ghostscript.
  4.  
  5. Ghostscript is distributed in the hope that it will be useful, but
  6. WITHOUT ANY WARRANTY.  No author or distributor accepts responsibility
  7. to anyone for the consequences of using it or for whether it serves any
  8. particular purpose or works at all, unless he says so in writing.  Refer
  9. to the Ghostscript General Public License for full details.
  10.  
  11. Everyone is granted permission to copy, modify and redistribute
  12. Ghostscript, but only under the conditions described in the Ghostscript
  13. General Public License.  A copy of this license is supposed to have been
  14. given to you along with Ghostscript so you can know your rights and
  15. responsibilities.  It should be in a file named COPYING.  Among other
  16. things, the copyright notice and this notice must be preserved on all
  17. copies.  */
  18.  
  19. /* zvmem2.c */
  20. /* Level 2 "Virtual memory" operators for Ghostscript */
  21. #include "ghost.h"
  22. #include "errors.h"
  23. #include "oper.h"
  24. #include "ivmspace.h"
  25. #include "store.h"
  26.  
  27. /* <bool> setshared/setglobal - */
  28. int
  29. zsetshared(register os_ptr op)
  30. {    check_type(*op, t_boolean);
  31.     alloc_select_local((op->value.index ? 0 : a_local));
  32.     pop(1);
  33.     return 0;
  34. }
  35.  
  36. /* <bool> currentshared/currentglobal - */
  37. int
  38. zcurrentshared(register os_ptr op)
  39. {    push(1);
  40.     make_bool(op, (alloc_current_local() ? 0 : 1));
  41.     return 0;
  42. }
  43.  
  44. /* <any> scheck/gcheck <bool> */
  45. int
  46. zscheck(register os_ptr op)
  47. {    make_bool(op, (r_is_global(op) ? 1 : 0));
  48.     return 0;
  49. }
  50.  
  51. /* ------ Initialization procedure ------ */
  52. op_def zvmem2_op_defs[] = {
  53.     {"0currentshared", zcurrentshared},
  54.     {"1scheck", zscheck},
  55.     {"1setshared", zsetshared},
  56.     op_def_end(0)
  57. };
  58.